home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 6 / CU Amiga Magazine's Super CD-ROM 06 (1996)(EMAP Images)(GB)(Track 1 of 4)[!][issue 1997-01].iso / cucd / graphics / 64coloricons_v1 / install < prev    next >
Text File  |  1996-10-20  |  596b  |  25 lines

  1. ; $VER: 64ColorIconInstall 1.00 (20.10.96)
  2.  
  3. FAILAT 10
  4. IF EXISTS C:SetWBColors
  5.     ECHO "It's already installed!"
  6. ELSE
  7.     ECHO "User-Startup Update..."
  8.     IF EXISTS S:User-Startup
  9.         ECHO "run >NIL: C:SetWBColors <>NIL:" >T:Buffer
  10.         JOIN T:Buffer S:User-Startup TO T:User-Startup >NIL:
  11.         COPY T:User-Startup TO S: >NIL:
  12.         DELETE T:Buffer T:User-Startup
  13.     ELSE
  14.         ECHO "run >NIL: C:SetWBColors <>NIL:" >S:User-Startup
  15.     ENDIF
  16.  
  17.     ECHO "Copying SetWBColors..."
  18.     COPY Software/#? TO c: all >NIL:
  19.  
  20.     ECHO "... and start it" >CON:50/50/500/100/Install/CLOSE
  21.     RUN >NIL: C:SetWBColors <>NIL:
  22.     ECHO "That's all"
  23. ENDIF
  24.  
  25.